home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00013.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  552 b   |  21 lines

  1. on enterFrame
  2.   global gSISystem, ghfathlete, gHFposition
  3.   if gSISystem = "WIN" then
  4.     set vStart to item 11 of getaProp(ghfathlete, gHFposition)
  5.     set vEnd to item 12 of getaProp(ghfathlete, gHFposition)
  6.   else
  7.     if gSISystem = "MAC" then
  8.       set vStart to item 13 of getaProp(ghfathlete, gHFposition) * 2
  9.       set vEnd to item 14 of getaProp(ghfathlete, gHFposition) * 2
  10.     else
  11.       set vStart to 0
  12.       set vEnd to 0
  13.     end if
  14.   end if
  15.   DVHide()
  16.   DVPlay(vStart, vEnd)
  17.   DVShow()
  18.   set the visible of sprite 45 to 0
  19.   go("vid2")
  20. end
  21.